home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Internet software / PageSpinner 2.01 / PageSpinner Extensions / More JavaScripts / More JavaScripts.rsrc / TEXT_209.txt < prev    next >
Text File  |  1997-06-07  |  274b  |  16 lines

  1. function hideBetween (theText, altText, startAt, stopAt)
  2. {
  3.     var now = new Date();
  4.     var h = now.getHours();
  5.  
  6.     if (startAt <= stopAt)
  7.     {
  8.         if ( h >= startAt & h <= stopAt)
  9.             return(altText)
  10.         else
  11.             return (theText);
  12.     }
  13.     return ('** ERROR in JavaScript hideBetween **');
  14. }
  15.  
  16.